home *** CD-ROM | disk | FTP | other *** search
- /*
- * This ARexx script simulates the UNIX-sh script of the same name.
- *
- * Run LaTeX three times (to resolve all dependencies) and run
- * TeX4HT afterwards.
- *
- * Copyright (C) 1998 by Andreas Scherer.
- * This ARexx script is free software; the author gives unlimited
- * permission to copy, distribute, and modify it.
- *
- * The first parameter should always be "latex"; it will be called
- * three times on the source file indicated by the second parameter.
- */
-
- Address COMMAND
-
- Parse Arg LATEX ARGFILE .
-
- LATEX ARGFILE
- LATEX ARGFILE
- LATEX ARGFILE
-
- tex4ht ARGFILE
-
- /*
- * Now execute the resulting ARGFILE.lg
- * "./"ARGFILE".lg"
- */
-
- /* EOF tex4ht.rexx */
-